{% extends "base.html" %} {% block title %}Appointment Settings - Quick Care Connect{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Appointment Settings

Manage your practice locations and consultation schedules

Appointment Type Selection

Select which types of appointments you want to offer. You can enable or disable each type independently.

Physical Appointments

Add your physical practice locations/hospitals/clinics. For each location, set available days and timings. The system will automatically create appointment slots.

{% if physical_practices %} {% for practice_name, practice_data in physical_practices.items() %} {% set practice_index = 'physical_' + loop.index0|string %} {% set appointment_type = 'physical' %} {% include 'doctors/_practice_card_standalone.html' %} {% endfor %} {% endif %}

Video Consultations

Set your video consultation availability. Video consultations are online and don't require a physical location.

{% if video_practices %} {% for practice_name, practice_data in video_practices.items() %} {% if loop.first %} {% set practice_index = 'video_0' %} {% set appointment_type = 'video' %} {% include 'doctors/_practice_card_standalone.html' %} {% endif %} {% endfor %} {% else %} {% set practice_index = 'video_0' %} {% set appointment_type = 'video' %} {% set practice_name = 'Video Consultation' %} {% set practice_data = {} %} {% include 'doctors/_practice_card_standalone.html' %} {% endif %}
{% endblock %}